golang.org/x/net/http2.ClientConn.maxConcurrentStreams (field)
7 uses
golang.org/x/net/http2 (current package)
transport.go#L328: maxConcurrentStreams uint32
transport.go#L742: maxConcurrentStreams: initialMaxConcurrentStreams, // "infinite", per spec. Use a smaller value until we have received server settings.
transport.go#L926: maxConcurrent := cc.maxConcurrentStreams
transport.go#L969: maxConcurrentOkay = int64(len(cc.streams)+cc.streamsReserved+1) <= int64(cc.maxConcurrentStreams)
transport.go#L1581: if int64(len(cc.streams)) < int64(cc.maxConcurrentStreams) {
transport.go#L2799: cc.maxConcurrentStreams = s.Val
transport.go#L2840: cc.maxConcurrentStreams = defaultMaxConcurrentStreams
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)